*{
    padding: 0;
    margin: 0;
}
.main_body{
    min-height: 60vh;
    padding-top: 2rem;
    padding-bottom: 3rem;
}


/* product card */
.product_card{
    width: 100%;
    height: 20rem;
    background-color: #fff;
    position: relative;
    transition: all .4s;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product_card:hover{
    background-color: #F2CB1F;
}
.product_card img{
    width: 50%;
}
.product_card_header{
    position: absolute;
    top: .5rem;
    left: .5rem;
    /* font-weight: bold; */
    font-size: .8rem;
}
.product_card_footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-left: 1rem;
}
.rating{
    font-size: .8rem;
    color: rgb(170, 169, 169);
}
.rating .rated{
    color: #0da82c;
}
.product_card_footer span{
    font-weight: bold;
    color: black;
}
.product_card_footer button{
    border: 0;
    padding: .8rem;
    background-color: orange;
    transition: all 1s;
}
.product_card_footer button:hover{
    background-color: black;
    color: white;
}
.product_btn_text{
    display: none;
}
.product_card_footer button:hover .product_btn_icon{
    display: none;
}
.product_card_footer button:hover .product_btn_text{
    display: block;
}




/* Footer */
.first_footer{
    padding: 1.5rem;
}
.footer_email{
    font-size: 1.1rem;
}
.second_footer{
    background-color: black;
    color: white;
    padding-top: 3rem;
    padding-bottom: 4rem;
}
.second_footer h5{
    font-size: .8rem;
    font-weight: bold;
}
.second_footer a{
    text-decoration: none;
    color: rgb(167, 162, 162);
}
.footer_subscribe input{
    width: 100%;
    border: 0;
    height: 2rem;
    padding-left: .5rem;
}
.footer_subscribe input:focus{
    outline: none;
}
.footer_subscribe button{
    padding: .5rem 1rem .5rem 1rem;
    background-color: #F2CB1F;
    border: 0;
    font-weight: bold;
    transition: all .3s;
    font-size: .8rem;
    margin-top: .5rem;
}
.footer_subscribe button:hover{
    background-color: black;
    color: white;
}

.third_footer{
    background-color: black;
}
.footer_copyright{
    border-top: 1px solid rgb(79, 74, 74);
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
}
.third_footer h6{
    color: rgb(167, 162, 162);
}
.third_footer a{
    text-decoration: none;
    color: #F2CB1F;
}
@media (min-width: 360px) and (max-width: 1024px) {
    .footer_email{
        font-size: .7rem;
        font-weight: bold;
    }
    .second_footer{
        text-align: center;
    }
}